feat(CCHAIN-740): Implement validator proof protocol per ADR-006#1450
Open
ancazamfir wants to merge 15 commits intocirclefin:mainfrom
Open
feat(CCHAIN-740): Implement validator proof protocol per ADR-006#1450ancazamfir wants to merge 15 commits intocirclefin:mainfrom
ancazamfir wants to merge 15 commits intocirclefin:mainfrom
Conversation
adizere
reviewed
Feb 18, 2026
Contributor
Author
|
For testing I used the example/channel app, init and started nodes wiht testnet_manager.bash script. With these settings the validator set rotates every 10 heights and 3 validators are selected from the validators crates. Testing uses the metrics to determine node classification, for this PR the
...
Moniker Type Cons Prop Live Expl Peers InPeers OutPeers Conns InConns OutConns
-----------------------------------------------------------------------------------------------------------------------------
app-1 validator 11 11 11 0 11 7 4 15 11 4
app-2 validator 10 8 11 0 11 7 4 15 11 4
app-3 validator 6 11 7 0 11 7 4 15 11 4
-----------------------------------------------------------------------------------------------------------------------------
app-0 persistent 11 11 11 0 11 7 4 15 11 4
app-4 persistent 10 7 8 0 11 7 4 15 11 4
-----------------------------------------------------------------------------------------------------------------------------
app-10 full_node 4 4 4 0 5 0 5 5 0 5
app-11 full_node 4 4 4 0 5 0 5 5 0 5
app-5 full_node 4 4 4 0 5 0 5 5 0 5
app-6 full_node 4 4 4 0 5 0 5 5 0 5
app-7 full_node 4 4 4 0 5 0 5 5 0 5
app-8 full_node 4 4 4 0 5 0 5 5 0 5
app-9 full_node 4 4 4 0 5 0 5 5 0 5 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implementation of #1436
Uses libp2p-stream protocol to satisfy the protocol spec and as proposed by @romac